

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


:root {
    --primary-color: #2596be;
}

* { 
margin: 0; 
padding: 0; 
box-sizing: border-box; 
transition: all 0.2s ease-in-out;
} 

body{
max-width: 100%; 
   font-family: "Outfit", sans-serif;
font-optical-sizing: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #1c1c1c;
background-color: #fafafa;
}

/* site header */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(28, 28, 28, 0.06);
}

.site-header .container {
    min-height: 76px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.site-header-brand {
    padding: 0;
    margin-right: 12px;
}

.site-header-logo {
    height: 58px;
    width: auto;
    transition: transform 0.25s ease;
}

.site-header-brand:hover .site-header-logo {
    transform: scale(1.02);
}

.site-header-toggler {
    border: 1px solid rgba(26, 10, 69, 0.15);
    border-radius: 10px;
    padding: 8px 10px;
    box-shadow: none;
    color: #1A0A45;
}

.site-header-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231A0A45' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-header-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(73, 102, 220, 0.15);
}

.site-header-quick-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    margin-right: 10px;
}

.site-header-quick-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    color: #1A0A45;
    background: rgba(73, 102, 220, 0.06);
    border: 1px solid rgba(26, 10, 69, 0.08);
    text-decoration: none;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-header-quick-btn:hover,
.site-header-quick-btn:focus {
    color: #4966dc;
    background: rgba(73, 102, 220, 0.12);
    border-color: rgba(73, 102, 220, 0.2);
}

.site-header-quick-btn.active {
    color: #4966dc;
    background: rgba(73, 102, 220, 0.14);
    border-color: rgba(73, 102, 220, 0.25);
}

.site-header-quick-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #4966dc, #BF008B);
    border: none;
}

.site-header-quick-btn--primary:hover,
.site-header-quick-btn--primary:focus {
    color: #fff;
    background: linear-gradient(135deg, #3d57c4, #a8007a);
    transform: translateY(-1px);
}

.site-header-quick-btn--danger {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.08);
    border-color: rgba(220, 53, 69, 0.15);
}

.site-header-quick-btn--danger:hover,
.site-header-quick-btn--danger:focus {
    color: #fff;
    background: #dc3545;
    border-color: #dc3545;
}

.site-header-nav {
    gap: 4px;
}

.site-header-nav .nav-link {
    color: #1A0A45 !important;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 14px !important;
    border-radius: 8px;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-header-nav .nav-link:hover,
.site-header-nav .nav-link:focus {
    color: #4966dc !important;
    background: rgba(73, 102, 220, 0.06);
}

.site-header-nav .nav-link.active {
    color: #4966dc !important;
    font-weight: 600;
    background: rgba(73, 102, 220, 0.08);
}

.site-header-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #4966dc, #BF008B);
}

.site-header-nav .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: 0.15em;
    transition: transform 0.2s ease;
}

.site-header-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.site-header-dropdown {
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    padding: 8px;
    margin-top: 10px !important;
    box-shadow: 0 12px 40px rgba(28, 28, 28, 0.1);
    min-width: 220px;
}

.site-header-dropdown .dropdown-item {
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1c1c1c;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.site-header-dropdown .dropdown-item:hover,
.site-header-dropdown .dropdown-item:focus {
    background: rgba(73, 102, 220, 0.08);
    color: #4966dc;
    padding-left: 18px;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    padding: 9px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-btn--outline {
    color: #4966dc;
    background: #fff;
    border: 1px solid #e0e5f5;
}

.header-btn--outline:hover {
    color: #4966dc;
    background: #f4f6fd;
    border-color: #4966dc;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(73, 102, 220, 0.12);
}

.header-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #4966dc, #BF008B);
    border: none;
}

.header-btn--primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(73, 102, 220, 0.3);
}

.header-btn--ghost {
    color: #BF008B;
    background: rgba(191, 0, 139, 0.06);
    border: 1px solid rgba(191, 0, 139, 0.2);
}

.header-btn--ghost:hover {
    color: #BF008B;
    background: rgba(191, 0, 139, 0.1);
    border-color: #BF008B;
    transform: translateY(-1px);
}

.header-btn--danger {
    color: #fff;
    background: #dc3545;
    border: none;
}

.header-btn--danger:hover {
    color: #fff;
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.25);
}

.site-header-mobile-actions {
    display: flex;
    gap: 10px;
    padding: 12px 0 4px;
    border-top: 1px solid #f1f1f1;
    margin-top: 8px;
}

.site-header-mobile-actions .header-btn {
    flex: 1;
    min-width: 0;
}

@media screen and (max-width: 991px) {
    .site-header .navbar-collapse {
        padding: 12px 0 16px;
    }

    .site-header-nav {
        gap: 2px;
        margin-bottom: 4px;
    }

    .site-header-nav .nav-link {
        padding: 10px 12px !important;
    }

    .site-header-nav .nav-link.active::after {
        display: none;
    }

    .site-header-nav .nav-link.active {
        border-left: 3px solid #4966dc;
        border-radius: 0 8px 8px 0;
    }

    .site-header-dropdown {
        border: none;
        box-shadow: none;
        padding: 0 0 0 12px;
        margin-top: 0 !important;
        background: transparent;
    }

    .site-header-actions {
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .site-header-mobile-actions {
        display: none !important;
    }

    .site-header-quick-actions {
        display: none !important;
    }
}

  .header-section{
    padding-top: 200px;
    padding-bottom: 25px;
    background: linear-gradient(135deg, #1362B0, #001221);
}



.header-title{
    font-size: 3vw;
    color: #fff;
    font-weight: 900;
}

.login-logo{
    height: 80px;
}

.logo{
    height: 70px;
}

.dashboard-logo{
    height: 40px;
}

.form-control {
border: 1px solid #e0e0e0;
transition: all 0.3s ease;
background-color: #f9fafb;
border-radius: 10px;
}

.form-select{
border: 1px solid #e0e0e0;
transition: all 0.3s ease;
background-color: #f9fafb;
border-radius: 10px;
}


.form-select:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.15);
background-color: #fff;
}


.form-control:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.15);
background-color: #fff;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-floating label {
color: #6c757d;
}

.btn{
transition: all 0.3s ease;
}

.btn-1{
    color: #fff;
    background-color: #4966dc;
}

.btn-1:hover{
color: #fff;
transform: translateY(-1px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}



.btn-2{
    color: #fff;
    background-color: #BF008B;
}

.btn-2:hover{
color: #fff;
transform: translateY(-1px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.btn-3{
    color: #BF008B;
    border: 1px solid #BF008B;
}

.btn-3:hover{
    color: #BF008B;
}




.color-1{
    color: #4966dc;
}

.color-2{
    color: #BF008B;
}


.btn-outline-secondary{
    border: solid 1px #E0E0E0;
}

.btn-outline-secondary:hover{
    background-color: #EBE8E8;
    color: #1a1a1a;
    border: solid 1px #EBE8E8;
}


.hero-section {
    padding-top: 100px; padding-bottom: 30px;
}


.hero-1{
    background: linear-gradient(135deg,#D1DCFF 0%,#fafafa 100%); padding: 40px 20px 40px 20px;
}



a:hover {
    color: #4966dc;
}



.slider-title{
    font-size: 2vw;
    font-weight: 700;
}

.slider-description{
    
}




/* Responsive CSS Here */
@media screen and (max-width: 950px) {

    .header-section{
    padding-top: 150px;
    padding-bottom: 25px;

}

.header-title{
    font-size: 30px;
}

.slider-title{
    font-size: 20px;
    font-weight: 700;
}

.slider-description{
}

.hero-section{
    padding-top: 100px;
    padding-bottom: 30px;
}

}


.card{
border: 1px #f1f1f1 solid;
border-radius: 10px;
}

.table th, .table td {
    padding: 14px 18px;
}


table td, table th {
white-space: nowrap;
}



.icon-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 18px;
}

.bg-primary-subtle{
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-success-subtle{
    background-color: rgba(25, 135, 84, 0.1);
}

.bg-danger-subtle{
    background-color: rgba(220, 53, 69,  0.1);
}

.bg-warning-subtle{
    background-color: rgba(255, 193, 7,  0.1);
}


.blur-img {
    filter: blur(4px);
    transition: 0.3s ease;
}


.btn{
    border-radius: 8px;
}







/* dashboard */

header { 
height: 70px; 
width: 100vw; 
padding: 0 30px; 
position: fixed; 
z-index: 1; 
display: flex; 
justify-content: space-between; 
align-items: center; 
background-color: #fff;
border-bottom: solid 1px #f1f1f1;
} 





.icn { 
height: 30px; 
} 
.menuicn { 
cursor: pointer; 
transition: 0.4s;
} 


.menuicn:hover{
}

.searchbar, 
.message, 
.logosec { 
display: flex; 
align-items: center; 
justify-content: center; 
} 

.searchbar2 { 
display: none; 
} 

.logosec { 
gap: 10px; 
} 




.message { 
gap: 3px; 
position: relative; 
cursor: pointer; 
} 
.circle { 
height: 7px; 
width: 7px; 
position: absolute; 
background-color: transparent; 
border-radius: 50%; 
left: 19px; 
top: 8px; 
} 
.dp { 
height: 50px; 
width: 50px; 
background-color: transparent; 
border-radius: 50%; 
display: flex; 
align-items: center; 
justify-content: center; 
overflow: hidden; 
border: solid 3px #8bc53f;
} 
.main-container { 
display: flex; 
width: 100vw; 
position: relative; 
top: 70px; 
z-index: 100; 
} 
.dpicn { 
height: 42px; 
} 

.main { 
height: calc(100vh - 70px); 
width: 100%; 
overflow-y: scroll; 
overflow-x: hidden; 
padding: 40px 30px 30px 30px; 
} 

.main::-webkit-scrollbar-thumb { 
background-image: 
linear-gradient(to bottom, rgb(0, 0, 85), rgb(0, 0, 50)); 
} 
.main::-webkit-scrollbar { 
width: 5px; 
} 
.main::-webkit-scrollbar-track { 
background-color: #9e9e9eb2; 
} 

.box-container { 
display: flex; 
justify-content: space-evenly; 
align-items: center; 
flex-wrap: wrap; 
gap: 50px; 
} 
.nav{ 
min-height: 91vh; 
width: 250px; 
position: absolute; 
top: 0px; 
left: 00; 
display: flex; 
flex-direction: column; 
justify-content: space-between; 
overflow: hidden; 
padding: 30px 0 20px 10px; 
} 
.navcontainer { 
height: calc(100vh - 70px); 
width: 300px; 
position: relative; 
overflow-y: scroll; 
overflow-x: hidden; 
transition: all 0.5s ease-in-out; 
border-right: solid 1px #f1f1f1;
background-color: #fff;
z-index: 900;
} 
.navcontainer::-webkit-scrollbar { 
display: none; 
} 
.navclose { 
width: 60px; 
} 
.nav-option { 
width: 100%; 
height: 50px; 
display: flex; 
align-items: center; 
padding: 0 30px 0 20px; 
gap: 5px; 
transition: all 0.3 ease-in-out; 
text-decoration: none;
color: #1c1c1c;
border-radius: 10px;
} 


.nav-option:hover { 
cursor: pointer; 
color: #fff;
background-color: #4966dc;
border-radius: 10px;
} 



.nav-option.active {
    background: #4966dc;
    border-radius: 10px;
    color: #fff;
}


.nav-img { 
height: 10px; 
} 

.nav-upper-options { 
display: flex; 
flex-direction: column; 
align-items: center; 
gap: 0px; 
} 

.option1 { 
cursor: pointer; 
border: none;
} 
.option1:hover { 

} 




.box { 
height: 130px; 
width: 230px; 
border-radius: 20px; 
box-shadow: 3px 3px 10px rgba(0, 30, 87, 0.751); 
padding: 20px; 
display: flex; 
align-items: center; 
justify-content: space-around; 
cursor: pointer; 
transition: transform 0.3s ease-in-out; 
} 
.box:hover { 
transform: scale(1.08); 
} 

.box:nth-child(1) { 
background-color: var(--one-use-color); 
} 
.box:nth-child(2) { 
background-color: var(--two-use-color); 
} 
.box:nth-child(3) { 
background-color: var(--one-use-color); 
} 
.box:nth-child(4) { 
background-color: var(--two-use-color); 
} 

.box img { 
height: 50px; 
} 
.box .text { 
color: white; 
} 
.topic { 
font-size: 13px; 
font-weight: 400; 
letter-spacing: 1px; 
} 

.topic-heading { 
font-size: 30px; 
letter-spacing: 3px; 
} 

.report-container { 
min-height: 300px; 
max-width: 1200px; 
margin: 70px auto 0px auto; 
background-color: #ffffff; 
border-radius: 30px; 
box-shadow: 3px 3px 10px rgb(188, 188, 188); 
padding: 0px 20px 20px 20px; 
} 
.report-header { 
height: 80px; 
width: 100%; 
display: flex; 
align-items: center; 
justify-content: space-between; 
padding: 20px 20px 10px 20px; 
border-bottom: 2px solid rgba(0, 20, 151, 0.59); 
} 

.recent-Articles { 
font-size: 30px; 
font-weight: 600; 
color: #5500cb; 
} 

.view { 
height: 35px; 
width: 90px; 
border-radius: 8px; 
background-color: #5500cb; 
color: white; 
font-size: 15px; 
border: none; 
cursor: pointer; 
} 

.report-body { ss
max-width: 1160px; 
overflow-x: auto; 
padding: 20px; 
} 
.report-topic-heading, 
.item1 { 
width: 1120px; 
display: flex; 
justify-content: space-between; 
align-items: center; 
} 
.t-op { 
font-size: 18px; 
letter-spacing: 0px; 
} 

.items { 
width: 1120px; 
margin-top: 15px; 
} 

.item1 { 
margin-top: 20px; 
} 
.t-op-nextlvl { 
font-size: 14px; 
letter-spacing: 0px; 
font-weight: 600; 
} 


.active-link{
background-color:  #ffd9ab;
}

/* dashboard */



.student-resource:hover{
    cursor: pointer;
}

/* auth pages */

.auth-section {
    min-height: calc(100vh - 80px);
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #edf1ff 0%, #fafafa 45%, #f8f0fc 100%);
    position: relative;
    overflow: hidden;
}

.auth-section::before,
.auth-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.auth-section::before {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(73, 102, 220, 0.12) 0%, transparent 70%);
}

.auth-section::after {
    width: 360px;
    height: 360px;
    bottom: -100px;
    left: -60px;
    background: radial-gradient(circle, rgba(191, 0, 139, 0.1) 0%, transparent 70%);
}

.auth-card {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(28, 28, 28, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
}

.auth-card--register {
    max-width: 1000px;
}

.auth-card--register .auth-card-visual {
    min-height: 600px;
}

.auth-card-visual {
    min-height: 520px;
    background-image: url('/assets/images/medium-shot-doctor-holding-smartphone (1).jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.auth-card-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(19, 98, 176, 0.85) 0%, rgba(73, 102, 220, 0.75) 45%, rgba(191, 0, 139, 0.65) 100%);
}

.auth-card-visual-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.auth-card-visual-content .auth-logo {
    height: 56px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.auth-card-visual-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.auth-card-visual-content p {
    opacity: 0.9;
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.auth-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.95;
}

.auth-features li i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.auth-card-form {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(191, 0, 139, 0.08);
    color: #BF008B;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.auth-card-form h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1c1c1c;
}

.auth-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.auth-input-group {
    position: relative;
}

.auth-input-group .form-control {
    padding-left: 44px;
    height: 48px;
}

.auth-input-group .form-select {
    padding-left: 44px;
    height: 48px;
}

.auth-input-group .form-control.auth-input-no-icon {
    padding-left: 16px;
}

.auth-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: 1rem;
    z-index: 4;
    pointer-events: none;
}

.auth-input-group .form-control:focus + .auth-input-icon,
.auth-input-group:focus-within .auth-input-icon {
    color: var(--primary-color);
}

.auth-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #adb5bd;
    padding: 4px 8px;
    cursor: pointer;
    z-index: 4;
    line-height: 1;
}

.auth-password-toggle:hover {
    color: var(--primary-color);
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #495057;
    cursor: pointer;
    margin: 0;
}

.auth-remember input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.auth-submit-btn {
    height: 48px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.auth-submit-btn:disabled {
    opacity: 0.75;
    transform: none !important;
    box-shadow: none !important;
}

.auth-footer-text {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f1f1f1;
    font-size: 0.9rem;
    color: #6c757d;
}

.auth-footer-text a {
    text-decoration: none;
}

.auth-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #BF008B;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 20px;
}

.auth-back-link:hover {
    color: #4966dc;
}

.auth-form-section {
    margin-bottom: 20px;
}

.auth-form-section-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #adb5bd;
    margin-bottom: 14px;
}

@media screen and (max-width: 991px) {
    .auth-section {
        padding: 120px 16px 60px;
    }

    .auth-card-visual {
        min-height: 220px;
        padding: 28px;
    }

    .auth-card-visual-content h2 {
        font-size: 1.35rem;
    }

    .auth-card-visual-content p,
    .auth-features {
        display: none;
    }

    .auth-card-form {
        padding: 36px 28px 40px;
    }
}

@media screen and (max-width: 576px) {
    .auth-card-form {
        padding: 28px 20px 32px;
    }

    .auth-card-form h3 {
        font-size: 1.5rem;
    }
}

/* dashboard & reports */

.dash-stat-card {
    border: 1px solid #f1f1f1;
    border-radius: 14px;
    padding: 20px;
    background: #fff;
    height: 100%;
}

.dash-stat-card .dash-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.dash-stat-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.dash-stat-card p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.dash-stat-card small {
    color: #adb5bd;
    font-size: 0.8rem;
}

.dash-panel {
    border: 1px solid #f1f1f1;
    border-radius: 14px;
    background: #fff;
    height: 100%;
}

.dash-panel.mb-0 {
    height: auto;
    width: 100%;
}

.dash-panel-header {
    padding: 18px 20px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.dash-panel-body {
    padding: 20px;
}

.dash-panel-body.p-0 {
    padding: 0;
}

.dash-chart-wrap {
    position: relative;
    height: 280px;
}

.dash-welcome {
    background: linear-gradient(135deg, #4966dc 0%, #1362B0 55%, #BF008B 100%);
    border-radius: 16px;
    color: #fff;
    padding: 28px 32px;
    margin-bottom: 24px;
}

.dash-welcome h4 {
    font-weight: 700;
    margin-bottom: 6px;
}

.dash-welcome p {
    margin: 0;
    opacity: 0.9;
}

.dash-quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    text-decoration: none;
    color: #1c1c1c;
    margin-bottom: 10px;
    background: #fff;
}

.dash-quick-link:hover {
    border-color: #4966dc;
    color: #4966dc;
}

.dash-quick-link i {
    font-size: 1.2rem;
    color: #4966dc;
}

.report-period-tabs .btn {
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.85rem;
}

.report-period-tabs .btn.active {
    background-color: #4966dc;
    border-color: #4966dc;
    color: #fff;
}

.category-card {
    border: 1px solid #f1f1f1;
    border-radius: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(28, 28, 28, 0.08);
}

.conversation-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(73, 102, 220, 0.12), rgba(191, 0, 139, 0.1));
    color: #4966dc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.conversation-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4966dc, #BF008B);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.conversation-avatar--sm {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

.conversation-textarea {
    border-radius: 12px;
    resize: vertical;
    min-height: 90px;
}

.conversation-textarea:focus {
    border-color: #4966dc;
    box-shadow: 0 0 0 0.2rem rgba(73, 102, 220, 0.12);
}

.conversation-comment .card-body,
.conversation-composer .card-body {
    padding: 1.25rem;
}

.conversation-body {
    line-height: 1.6;
    color: #333;
    white-space: pre-wrap;
    word-break: break-word;
}

.conversation-actions .btn-light {
    border: 1px solid #eee;
    border-radius: 20px;
    font-size: 0.85rem;
}

.conversation-actions .btn-light:hover {
    background: #f8f9ff;
    border-color: #4966dc;
    color: #4966dc;
}

.conversation-reply {
    margin-left: 54px;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    background: #f8f9fb;
    border-radius: 12px;
    border-left: 3px solid #4966dc;
}

.reply-form {
    display: none;
}

.conversation-stat-card .card-header h6 {
    font-size: 0.95rem;
}

.conversation-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f1f1f1;
}

.conversation-participant-list {
    max-height: 320px;
    overflow-y: auto;
}

.conversation-participant-item {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid #f5f5f5;
}

.conversation-participant-item:last-child {
    border-bottom: none;
}

.conversation-empty {
    color: #6c757d;
}

.course-nav-pills {
    padding-bottom: 0.25rem;
}

.course-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    color: #4966dc;
    background: #fff;
    border: 1px solid #e8ebf7;
}

.course-nav-pill:hover {
    background: #f4f6fd;
    color: #4966dc;
    border-color: #4966dc;
}

.course-nav-pill.active {
    background: linear-gradient(135deg, #4966dc, #BF008B);
    color: #fff;
    border-color: transparent;
}

.assessment-summary-card .card-body {
    padding: 1.1rem 1.25rem;
}

.assessment-summary-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.assessment-item-card {
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    border: 2px solid transparent !important;
}

.assessment-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(28, 28, 28, 0.08) !important;
}

.assessment-item-card--active {
    border-color: #4966dc !important;
    box-shadow: 0 10px 24px rgba(73, 102, 220, 0.12) !important;
}

.assessment-item-card--active .assessment-item-chevron {
    color: #4966dc !important;
    transform: rotate(90deg);
}

.assessment-item-chevron {
    transition: transform 0.15s ease;
}

.assessment-attempts-panel {
    min-height: 420px;
}

.assessment-attempts-table thead th {
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-width: 1px;
}

.assessment-attempt-details-box {
    background: #f8f9fb;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin: 0.25rem 0 0.5rem;
}

.assessment-attempt-subrow {
    display: grid;
    grid-template-columns: 1fr 80px 90px 1.2fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.45rem 0;
    border-bottom: 1px solid #eceef3;
    font-size: 0.85rem;
}

.assessment-attempt-subrow:last-child {
    border-bottom: none;
}

@media (max-width: 991px) {
    .assessment-attempt-subrow {
        grid-template-columns: 1fr 1fr;
    }
}

/* site footer */

.site-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #001221 0%, #0a2d52 40%, #1362B0 100%);
    padding: 72px 0 0;
}

.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.site-footer::before {
    width: 480px;
    height: 480px;
    top: -160px;
    right: -120px;
    background: radial-gradient(circle, rgba(191, 0, 139, 0.18) 0%, transparent 70%);
}

.site-footer::after {
    width: 400px;
    height: 400px;
    bottom: -80px;
    left: -100px;
    background: radial-gradient(circle, rgba(73, 102, 220, 0.2) 0%, transparent 70%);
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 64px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(191, 0, 139, 0.15);
    color: #f0a8dc;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 340px;
}

.footer-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #BF008B, #4966dc);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a i {
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(2px);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-contact-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(209, 218, 255, 0.12);
    color: #a8c4f0;
    font-size: 1rem;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.55;
    padding-top: 2px;
}

.footer-contact-text a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-text a:hover {
    color: #fff;
}

.footer-cta {
    margin-top: 8px;
    padding: 20px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.footer-cta .btn {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4966dc, #BF008B);
    border: none;
    color: #fff;
}

.footer-cta .btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(73, 102, 220, 0.35);
}

.footer-bottom {
    margin-top: 56px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    margin: 0;
}

.footer-copyright strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.footer-back-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-back-top:hover {
    color: #fff;
}

@media screen and (max-width: 991px) {
    .site-footer {
        padding-top: 56px;
    }

    .footer-about {
        max-width: none;
    }

    .footer-bottom-inner {
        justify-content: center;
        text-align: center;
    }
}

/* courses page */

.courses-section {
    padding: 60px 0 80px;
}

.courses-intro {
    margin-bottom: 36px;
}

.courses-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(191, 0, 139, 0.08);
    color: #BF008B;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.courses-intro h2 {
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1c1c1c;
}

.courses-intro p {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
    max-width: 560px;
}

.courses-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(28, 28, 28, 0.04);
}

.courses-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.courses-category-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: #495057;
    background: #f8f9fb;
    border: 1px solid #eceef3;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.courses-category-pill:hover {
    color: #4966dc;
    background: #f4f6fd;
    border-color: #4966dc;
}

.courses-category-pill.active {
    color: #fff;
    background: linear-gradient(135deg, #4966dc, #BF008B);
    border-color: transparent;
    font-weight: 600;
}

.courses-search-form {
    flex-shrink: 0;
    width: 100%;
    max-width: 340px;
}

.courses-search-group {
    display: flex;
    gap: 8px;
}

.courses-search-input {
    flex: 1;
    height: 44px;
    border-radius: 10px !important;
    border: 1px solid #e8ebf7 !important;
    background: #f9fafb !important;
    padding-left: 16px;
    font-size: 0.9rem;
}

.courses-search-input:focus {
    border-color: #4966dc !important;
    box-shadow: 0 0 0 0.2rem rgba(73, 102, 220, 0.12) !important;
    background: #fff !important;
}

.courses-search-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #4966dc, #BF008B);
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.courses-search-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(73, 102, 220, 0.3);
}

.courses-search-reset {
    height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: #6c757d;
    background: #f8f9fb;
    border: 1px solid #eceef3;
    transition: background 0.2s ease, color 0.2s ease;
}

.courses-search-reset:hover {
    color: #dc3545;
    background: #fff5f5;
    border-color: #f5c6cb;
}

.courses-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.courses-results-count {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.courses-results-count strong {
    color: #1c1c1c;
    font-weight: 600;
}

.courses-search-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(73, 102, 220, 0.08);
    color: #4966dc;
    font-size: 0.85rem;
    font-weight: 500;
}

.course-card {
    border: 1px solid #f1f1f1;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(28, 28, 28, 0.1);
    border-color: #e8ebf7;
}

.course-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 210px;
}

.course-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.course-card:hover .course-card-img-wrap img {
    transform: scale(1.05);
}

.course-card-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to top, rgba(0, 18, 33, 0.65), transparent);
    pointer-events: none;
}

.course-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    color: #4966dc;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.course-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.course-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #1c1c1c;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.course-card-title:hover {
    color: #4966dc;
}

.course-card-desc {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.55;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.course-card-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #BF008B;
    margin: 0;
}

.course-card-price--free {
    color: #198754;
}

.course-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f1f1f1;
}

.course-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #6c757d;
}

.course-card-date i {
    color: #4966dc;
    font-size: 0.9rem;
}

.course-card-enroll {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #4966dc, #BF008B);
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card-enroll:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(73, 102, 220, 0.3);
}

.courses-empty {
    text-align: center;
    padding: 60px 24px;
    background: #fff;
    border: 1px dashed #e0e5f5;
    border-radius: 16px;
}

.courses-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(73, 102, 220, 0.1), rgba(191, 0, 139, 0.08));
    color: #4966dc;
    font-size: 1.75rem;
}

.courses-empty h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

.courses-empty p {
    color: #6c757d;
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 991px) {
    .courses-section {
        padding: 48px 0 60px;
    }

    .courses-toolbar {
        flex-direction: column;
    }

    .courses-search-form {
        max-width: none;
    }

    .courses-intro h2 {
        font-size: 1.5rem;
    }
}

















